home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / CIT.v4 / citra / CITString.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  476 b   |  33 lines

  1. //
  2. //                    CITString include
  3. //
  4. //                          StormC
  5. //
  6. //                     version 2002.01.25
  7. //
  8.  
  9. #ifndef CIT_STRING_H
  10. #define CIT_STRING_H TRUE
  11.  
  12. #ifndef CIT_INPUT_H
  13. #include "CITInput.h"
  14. #endif
  15.  
  16. class CITString:public CITInput
  17. {
  18.   public:
  19.     CITString();
  20.     ~CITString();
  21.  
  22.     void  TextVal(char* text);
  23.     char* TextVal();
  24.     
  25.   protected:
  26.     virtual Object* NewObjectA(TagItem* tags);
  27.     
  28.   private:
  29.     TagItem* stringTag;
  30. };
  31.  
  32. #endif
  33.